home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programmer's Power Pack
/
Delphi Volume 1.iso
/
s_to_z
/
tbarco16
/
bardem16.dpr
< prev
next >
Wrap
Text File
|
1996-09-15
|
833b
|
31 lines
program BarDem16;
{Warning: If the TBarcode component is not installed,
You get an error message while loading this project!
If this happens to You, You must close he project
WITHOUT SAVING and read the documentation how
to install TBarcode as a VCL-component.
Documentation is in the files ENGLISH.DOC and DEUTSCH.DOC.
If You have any problems installing or using TBarcode,
please contact the author:
Juergen Schlottke
CIS-ID 100106,3034
Internet 100106.3034@compuserve.com
WWWeb http://ourworld.compuserve.com/homepages/schlottke
Consider that my mother language is German! So when
You ask me in English, please write slowly <bg>.
}
uses
Forms,
Barfrm16 in 'BARFRM16.PAS' {DemoForm};
{$R *.RES}
begin
Application.CreateForm(TDemoForm, DemoForm);
Application.Run;
end.